Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
8 | |||
9 | /** |
||
10 | * Get list of changes for movies |
||
11 | * @returns { Promise<ChangesResponse> } |
||
12 | * @see https://developers.themoviedb.org/3/changes/get-movie-change-list |
||
13 | */ |
||
14 | public async movies(): Promise<ChangesResponse> { |
||
15 | return this.sendGetRequest('movie/changes'); |
||
16 | } |
||
37 |